func crypto/tls.quicError

10 uses

	crypto/tls (current package)
		quic.go#L215: 		return quicError(errors.New("tls: Start called more than once"))
		quic.go#L219: 		return quicError(errors.New("tls: Config MinVersion must be at least TLS 1.3"))
		quic.go#L280: 		return quicError(c.in.setErrorLocked(errors.New("tls: handshake data received at wrong level")))
		quic.go#L309: 		return quicError(q.conn.handshakeErr)
		quic.go#L329: 		return quicError(errors.New("tls: SendSessionTicket called before handshake completed"))
		quic.go#L332: 		return quicError(errors.New("tls: SendSessionTicket called on the client"))
		quic.go#L335: 		return quicError(errors.New("tls: SendSessionTicket called multiple times"))
		quic.go#L338: 	return quicError(c.sendSessionTicket(opts.EarlyData, opts.Extra))
		quic.go#L348: 		return quicError(errors.New("tls: StoreSessionTicket called on the server"))
		quic.go#L381: func quicError(err error) error {